home *** CD-ROM | disk | FTP | other *** search
/ Reverse Code Engineering RCE CD +sandman 2000 / ReverseCodeEngineeringRceCdsandman2000.iso / RCE / Tools / Win95 Secrets / SETUP.Z / SHOW16.MAK < prev    next >
Encoding:
Text File  |  1995-07-19  |  420 b   |  19 lines

  1. PROJNAME = SHOW16
  2.  
  3. !ifdef DEBUG
  4. DEBUG_LINK = /CO
  5. !endif
  6.  
  7. OBJS = $(PROJNAME).obj
  8.  
  9. $(PROJNAME).exe: $(OBJS) $(PROJNAME).res
  10.   link /ON:N /A:16 $(DEBUG_LINK) $(OBJS), $(PROJNAME), , \
  11.       LIBW.LIB OLDNAMES.LIB LLIBCEW.LIB,$(PROJNAME).def
  12.   RC $(PROJNAME).res $(PROJNAME).exe
  13.  
  14. .c.obj:
  15.   CL /W3 /YX /GAs /AL /G3 /c /Zi /W3 $<
  16.  
  17. $(PROJNAME).res: $(PROJNAME).rc 
  18.     RC -R -FO $(PROJNAME).res $(PROJNAME).rc
  19.